<!DESCRIPTION>Takes an email address and returns just the domain - the stuff after the "@" sign. We've put it together with a simple WHOIS query<!/DESCRIPTION>
<!CATEGORY>Forms<!/CATEGORY>
<!SCRIPT>
<!-- START OF SCRIPT -->
<!-- HOW TO INSTALL EMAIL DOMAIN:
1. Copy code into the HEAD section of document
2. Put last coding into the BODY section of document -->
<!-- STEP ONE: Add code into HEAD section of document -->
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function stripEmail(Email){
var atsign = Email.substring(0,Email.lastIndexOf('@')+1);
var domain = Email.substring(atsign.length,Email.length+1);
var page = "http://www.networksolutions.com/cgi-bin/whois/whois?STRING=" + domain;
window.location=page;
}
// End -->
</SCRIPT>
<!-- STEP TWO: Add code into BODY section of document -->